Fix missing subparser in test harness
authorStuart Prescott <stuart@debian.org>
Fri, 3 May 2024 06:48:49 +0000 (16:48 +1000)
committerStuart Prescott <stuart@debian.org>
Tue, 23 Sep 2025 00:19:51 +0000 (10:19 +1000)
Not needed in the build but needed for debugging the test harness...

Gbp-Pq: Name 0003-Fix-missing-subparser-in-test-harness.patch

testing/command.py

index 9ef35ee207f9556c809d52a766327d3e88b49b32..c52b09fe62cacbc72e4598daaf7d3074dcff79e5 100644 (file)
@@ -204,6 +204,7 @@ def main():
         type=int,
         help="use build number n (0-based), latest = -1 (default)",
     )
+    parser_list = subparsers.add_parser("list")
     args = parser.parse_args()
 
     if hasattr(args, "buildno"):